home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 33 / Amiga Format AFCD33 (Issue 117, Dec 1998).iso / -seriously_amiga- / graphics / png-boxel / install_png-box < prev    next >
Text File  |  1998-09-14  |  1KB  |  46 lines

  1. ; $VER: Install_PNG-Box.script V1.50 (28.8.97)
  2. ; © 1997 by Andreas R. Kleinert.
  3.  
  4.  
  5. (set @app-name "PNG-Box")
  6. (welcome "PNG-Box Installation")
  7.  
  8.  
  9. ; *** english is default language
  10.  
  11.     (set #Msg_wrong_OS       (cat "You need at least AmigaOS V2.04 to run PNG-Box !\n\n"
  12.                                   "PNG-Box will not run with your system configuration !"))
  13.     (set #Msg_InstallingPNG-Box   "Installing PNG-Box now. Libraries have to be installed separately !")
  14.     (set #Msg_SelectPath          "Select path to install PNG-Box to")
  15.     (set #Msg_DoInstallPNG-Box    "PNG-Box has been installed.")
  16.  
  17.  
  18. (set #OS_VER (/ (getversion) 65536) )
  19.  
  20. (if(< #OS_VER 37)
  21.   (abort #Msg_wrong_OS)
  22. )
  23.  
  24. (complete 0)
  25.  
  26. (copyfiles
  27.   (prompt #Msg_Installing)
  28.   (help @copyfiles-help)
  29.   (source "")
  30.   (set #svcomdir
  31.               (askdir
  32.                      (prompt #Msg_SelectPath)
  33.                      (help @askdir-help)
  34.                      (newpath)
  35.                      (default "Work:PNG-Box")
  36.               )
  37.   )
  38.   (dest #svcomdir)
  39.   (all)
  40.   (confirm)
  41. )
  42.  
  43. (complete 100)
  44.  
  45. (exit #Msg_DoInstallPNG-Box)
  46.